Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633436 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/55 - Weeblist

index.css cody/swapnilsparsh/30DaysOfJavaScript/55 - Weeblist/index.css
136 Views
0 Comments
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Fira Sans', sans-serif;
}
a {
text-decoration: none;
index.js cody/swapnilsparsh/30DaysOfJavaScript/55 - Weeblist/index.js
213 Views
0 Comments
// Variable to store if the current search need anime or manga
var nameType = "Manga";
const api = "https://api.jikan.moe/v4/"

// Changes the name type to anime or manga on window load
window.onload = changeNameType();

// function to swap the name type
index.html cody/swapnilsparsh/30DaysOfJavaScript/55 - Weeblist/index.html
381 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WeebList</title>
<link rel="stylesheet" href="index.css">